Java Introduction

Java is an high level programming language that was build to run on older machines and support their architecture
It relies on Java Virtual Machine for its execution and runtime.
We will be diving deep into the working of Java and learning how to create stuff in it.

Copy paste the code below and click on the run button above to see an output
class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}